home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 March / march_2001.iso / intercd / root / ^Palm / Games / 5x5 / 5x5.rcp < prev    next >
Encoding:
Text File  |  1999-05-11  |  1.4 KB  |  58 lines

  1. #include "5x5.h"
  2.  
  3. MENU ID ID_Mnu5x5
  4. BEGIN
  5.    PULLDOWN "Game"
  6.    BEGIN
  7.       MENUITEM "New..." ID_MnuItmNew "N"
  8.    END
  9.  
  10.    PULLDOWN "Help"
  11.    BEGIN
  12.       MENUITEM "About 5x5..." ID_MnuItmAbout "A"
  13.    END
  14. END
  15.  
  16. FORM ID_Frm5x5 0 0 160 161 USABLE MODAL MENUID ID_Mnu5x5 HELPID ID_Hlp5x5
  17. BEGIN
  18.    TITLE "5x5 v1.01"
  19.  
  20.    LABEL  "Moves"  ID_LabMoves 0 20 FONT 1
  21.    LABEL  "On"     ID_LabOn    0 40 FONT 1
  22.    LABEL  "Off"    ID_LabOff   0 60 FONT 1
  23.  
  24.    FIELD ID_FldMoves 0 30 30 AUTO UNDERLINED NONEDITABLE
  25.    FIELD ID_FldOn    0 50 30 AUTO UNDERLINED NONEDITABLE
  26.    FIELD ID_FldOff   0 70 30 AUTO UNDERLINED NONEDITABLE
  27.  
  28.    BUTTON "New..." ID_BtnNew CENTER 145 AUTO AUTO
  29.  
  30. END
  31.  
  32. ALERT ID_AltAbout INFORMATION
  33. BEGIN
  34.    TITLE "About 5x5"
  35.    MESSAGE "5x5 - By Dave Pearson"
  36.    BUTTONS "Ok"
  37. END
  38.  
  39. ALERT ID_AltNew CONFIRMATION
  40. BEGIN
  41.    TITLE "Start new game?"
  42.    MESSAGE "Are you sure you want to start a new game?"
  43.    BUTTONS "Yes" "No"
  44. END
  45.  
  46. ALERT ID_AltWin INFORMATION
  47. BEGIN
  48.    TITLE "Winner!"
  49.    MESSAGE "Congratulations, you've done it!"
  50.    BUTTONS "I'm Cool"
  51. END
  52.  
  53. STRING ID_Hlp5x5 "Welcome to 5x5!\n\n"\
  54.                  "The object of the game is to fill all of the squares."\
  55.                  "When you click on a square, it, and the squares above,"\
  56.                  "below and to the sides will be toggled.\n\nGood luck!\n\n"\
  57.                  "davep@hagbard.demon.co.uk\nwww.hagbard.demon.co.uk"
  58.